/* ###### General Styling */

@import url('https://fonts.googleapis.com/css2?family=Edu+TAS+Beginner:wght@400;500&family=Gabarito:wght@400;500;600;700&family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Gabarito', sans-serif;
}

@media print {
    button.print-button {
        display: none;
    }
}

.stylish {
    font-family: 'Edu TAS Beginner', cursive;
}

body {
    background-color: #f5f8fa;
}

html {
    scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f5f8fa;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #717173;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #3a3845;
}


::selection {
    color: white;
    background-color: #2baffc;
}

.color-main {
    color: #2baffc !important;
}

.color-second {
    color: #3a3845 !important;
}

.color-third {
    color: #717173 !important;
}

.bg-main {
    background-color: #2baffc !important;
}

.bg-second {
    background-color: #3a3845 !important;
}

.bg-third {
    background-color: #717173 !important;
}

.btn-custom {
    background-color: #2baffc !important;
    color: white !important;
    font-weight: bold !important;
    border: 1px solid #2baffc !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2) !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
}

.btn-custom:hover {
    background-color: #2baffc !important;
    color: white !important;
    font-weight: bold !important;
    border: 1px solid #2baffc !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4) !important;
}

.btn-custom-2 {
    background-color: #e6e6e6 !important;
    color: #3a3845 !important;
    font-weight: bold !important;
    border: 1px solid #e6e6e6 !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2) !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
}

.btn-custom-2:hover {
    background-color: #e6e6e6 !important;
    color: #3a3845 !important;
    font-weight: bold !important;
    border: 1px solid #e6e6e6 !important;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4) !important;
}

i {
    color: #2baffc;
    font-size: 18px;
}

i:hover {
    cursor: pointer;
    /* animation: heartbeat 1s ease-in-out infinite; */
}


.shadow-custom {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Input Fields Styling */
input,
textarea,
select {
    box-shadow: none !important;
    border-radius: 10px !important;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15) !important;
}

input:focus,
textarea:focus,
select:focus,
form[type="file"]:focus {
    box-shadow: none !important;
    border-color: #2baffc !important;
}

.form-check-input:checked {
    box-shadow: none !important;
    background-color: #2baffc !important;
}

.heading::before {
    content: ' | ';
    color: #2baffc;
    font-weight: bolder;
}

/* #############################  Admin Panel ############################ */

.brand h1 {
    font-weight: bold;
}

.brand {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* For breadcrumbs */
.breadcrumb-item:hover {
    color: #2baffc;
    transition: all 0.3s ease-in-out;
}

.breadcrumb-item::before {
    color: #2baffc !important;
}



/* Styling For Images*/


.img-container .student-image {
    height: 150px !important;
    width: auto !important;
   display: block;
}

.img-container .student-cnic-image {
    width: auto !important;
    height: 150px !important;
    display: block;
}

.img-container .teacher-image {
    height: 150px !important;
    width: 150px !important;
    object-position: center !important;
    object-fit: cover !important;
}

.img-container .manager-image {
    height: 150px !important;
    width: 150px !important;
    object-position: center !important;
    object-fit: cover !important;
}


.img-div {
    overflow: hidden !important;
}

.img-div img {
    height: 40px !important;
    width: 40px !important;
    object-position: center !important;
    object-fit: cover !important;
}

.user-crud-image {
    height: 50px !important;
    width: 50px !important;
    object-position: center !important;
    object-fit: cover !important;
}

.course-crud-cover-image {
    height: 50px !important;
    width: 50px !important;
    object-position: center !important;
    object-fit: cover !important;
}

.course-cover-image {
    height: 100% !important;
    width: 95% !important;
    object-position: center !important;
    object-fit: cover !important;
}

.upcomingEvents-cover-image {
    height: 50px !important;
    width: 50px !important;
    object-position: center !important;
    object-fit: cover !important;
}

.story-cover-image {
    height: 50px !important;
    width: 50px !important;
    object-position: center !important;
    object-fit: cover !important;
}

.course-img-container {
    overflow: hidden;
}


.story-image-container {
    overflow: hidden;
    height: 400px !important;
    width: 400px !important;
}

.story-image {
    height: 100% !important;
    width: 100% !important;
    object-position: center !important;
    object-fit: cover !important;
}

/* Preview Image input Tags */
.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.image-preview {
    width: auto;
    height: 150px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 10px;
}